home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / plnk081.zip / pilot-link.0.8.1 / Java / Pdapilot / address / Database.java < prev    next >
Text File  |  1997-08-01  |  653b  |  15 lines

  1.  
  2. package Pdapilot.address;
  3.  
  4. public class Database extends Pdapilot.Database {
  5.     public Pdapilot.AppBlock newAppBlock() { return new Pdapilot.address.AppBlock(); }
  6.     public Pdapilot.AppBlock newAppBlock(byte[] contents) { return new Pdapilot.address.AppBlock(contents); }
  7.     
  8.     public Pdapilot.Record newRecord() { return new Pdapilot.address.Record(); }
  9.     public Pdapilot.Record newRecord(byte[] contents, Pdapilot.RecordID id, int index, int attr, int cat) 
  10.         { return new Pdapilot.address.Record(contents, id, index, attr, cat); }
  11.         
  12.     public Pdapilot.Char4 creator() { return new Pdapilot.Char4("addr"); }
  13.     public String dbname() { return "AddressDB"; }
  14.     
  15. }